home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000179_news@columbia.edu _Mon Dec 25 18:37:07 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id SAA00381 for <kermit.misc@watsun>; Mon, 25 Dec 1995 18:37:06 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id SAA04338 for kermit.misc@watsun; Mon, 25 Dec 1995 18:37:05 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Question about NT and kermit 95 telnet.
  8. Date: 25 Dec 1995 23:37:04 GMT
  9. Organization: Columbia University
  10. Lines: 39
  11. Message-ID: <4bncj0$47g@apakabar.cc.columbia.edu>
  12. References: <4bmnmc$gka@gandalf.rutgers.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4bmnmc$gka@gandalf.rutgers.edu>,
  16. Lee Clarke <lclarke@gandalf.rutgers.edu> wrote:
  17. >I run a Windows NT Server and need to telnet into it.
  18. >I want to know how Kermit95 supports this. Does it
  19. >set itself up as a service? Is it graphical to
  20. >the client? thanks.
  21. >
  22. Kermit 95 is a Telnet client, not a Telnet server.
  23. There are numerous postings on the Windows NT newsgroups
  24. about where to get Telnet servers for NT -- and also
  25. asking where to get them for Windows 95.
  26.  
  27. A Telnet server is strictly Text mode -- as is a Telnet
  28. client.  If you want a graphical image of the Windows NT
  29. GUI screen, and you want to be able to use your mouse
  30. and local keyboard to affect the remote NT system as if
  31. you were using the built-in ones, that is not a job for
  32. Telnet, which is a platform-independent protocol for
  33. establishing interactive TERMINAL connections.
  34.  
  35. Rather, it's a job for specialized platform-and-hardware
  36. dependent "screen scraping" software.  I personally do
  37. not keep up with this market and cannot recommend anything,
  38. so you're best off posting a query to the appropriate
  39. Windows NT newsgroups if that is what you need.
  40.  
  41. However, this does not mean that Kermit 95 is not without
  42. its uses in this situation.  A Kermit 95 server can be
  43. set up on a Windows NT or Windows 95 system to listen for
  44. incoming connections on any desired socket from a Kermit
  45. Telnet client (such as Kermit 95, MS-DOS Kermit, C-Kermit,
  46. etc).  Once the connection is made, all the client/server
  47. features of the Kermit protocol can be used: uploading,
  48. downloading, directory listings, exchange of variables,
  49. file management, etc etc, with various degrees of
  50. security built in.  The same type of arrangement can be
  51. made to accept incoming modem calls.
  52.  
  53. - Frank